home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / Apps / AudioApps / Resound / ConsoleManager.h < prev    next >
Text File  |  1992-12-20  |  873b  |  44 lines

  1.  
  2. /*
  3. March 25, 1992
  4.  
  5. Handles everything dealing with the console, except its insistence at being the key window, which is handled by the file manager.
  6.  
  7. */
  8.  
  9. #import <objc/Object.h>
  10.  
  11. @interface ConsoleManager:Object
  12. {
  13.     id    TheFileController;                // program objects.
  14.     id  TheSoundManager;
  15.     
  16.     id    StopButton;                        // interface objects.
  17.     id    PlayButton;
  18.     id    Meter;
  19.     id    RecordButton;
  20.     id  RecordFormButton;
  21.     
  22.     id  FortyMonoButton;
  23.     id  FortyStereoButton;
  24.     id  TwentyMonoButton;
  25.     id  TwentyStereoButton;
  26.     id  MuLawButton;
  27.     id  TimedRecordButton;
  28.     id  SecondsField;
  29.  
  30. }
  31.  
  32. - LeftSoundUp:sender;                    // for changing volume...
  33. - LeftSoundDown:sender;
  34. - RightSoundUp:sender;
  35. - RightSoundDown:sender;
  36. - PlayDown:sender;
  37. - RecordDown:sender;
  38. - StopDown:sender;
  39. - TurnOffPlay;                            // sound finished
  40. - TurnOffRecord;
  41. - SetMeterTo:  ThisSound;
  42.  
  43. @end
  44.